Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / clients / {id} / scope-mappings / clients / {client} / composite

Get effective client roles that are associated with the client's scope for a specific client.

Path parameters:
realm - realm name (not id!)
id - id of client (not client-id)
client -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client}/compositeGet effective client roles that are associated with the client's scope for a specific client.

Method Detail

GET /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client}/composite

Get effective client roles that are associated with the client's scope for a specific client.

HTTP Example:
GET /admin/realms/{realm}/clients/{id}/scope-mappings/clients/{client}/composite
API Example:

ScopeMappedClientResource.getCompositeClientScopeMappings({'realm': /* name realm name (not id!) */,
  'id': /* id id of client (not client-id) */,
  'client': …});

Output:
List<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.5.0-Final